home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / bbs / fcfgw40s.zip / SELECTGR.H < prev    next >
C/C++ Source or Header  |  1996-04-17  |  855b  |  40 lines

  1. // SelectGroup.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CSelectGroup dialog
  6.  
  7. class CSelectGroup : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CSelectGroup(CWnd* pParent = NULL);   // standard constructor
  12.  
  13.     static const char *strNoName;
  14.  
  15. // Dialog Data
  16.     //{{AFX_DATA(CSelectGroup)
  17.     enum { IDD = IDD_DIALOG_SELECT_GROUP };
  18.     CListBox    m_GroupList;
  19.     BOOL    m_SelectAll;
  20.     int        m_GroupNum;
  21.     //}}AFX_DATA
  22.  
  23.  
  24. // Overrides
  25.     // ClassWizard generated virtual function overrides
  26.     //{{AFX_VIRTUAL(CSelectGroup)
  27.     protected:
  28.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. protected:
  33.  
  34.     // Generated message map functions
  35.     //{{AFX_MSG(CSelectGroup)
  36.     virtual BOOL OnInitDialog();
  37.     //}}AFX_MSG
  38.     DECLARE_MESSAGE_MAP()
  39. };
  40.